home *** CD-ROM | disk | FTP | other *** search
- -- card: 3318 from stack: in
- -- bmap block id: 3762
- -- flags: 0000
- -- background id: 2617
- -- name:
- ----- HyperTalk script -----
- on idle
- global movies_global, number_of_movies, current_movie
- put 5 into theLimit
-
- put the seconds into startTime
- repeat
- if (the seconds - startTime) > theLimit
- then
- exit repeat
- end if
- if the mouse is down
- then
- go to previous card
- exit idle
- end if
- end repeat
- if current_movie < number_of_movies
- then
- add 1 to current_movie
- else
- put 1 into current_movie
- end if
-
- push card
- do line current_movie of movies_global
-
- end idle
-
-